projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f08b802
)
* print.c (Fredirect_debugging_output): Fix pointer signedess.
author
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 16 Mar 2011 21:28:29 +0000
(14:28 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 16 Mar 2011 21:28:29 +0000
(14:28 -0700)
src/ChangeLog
patch
|
blob
|
history
src/print.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 5f02fa1188d589e4447241c68e99f1268ecbc935..690a585b6414375dc4e6b55dde86b7983b8a3fd4 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,5
+1,7
@@
2011-03-16 Paul Eggert <eggert@cs.ucla.edu>
+ * print.c (Fredirect_debugging_output): Fix pointer signedess.
+
* lisp.h (debug_output_compilation_hack): Add decl here, to avoid
warning when compiling print.c.
diff --git
a/src/print.c
b/src/print.c
index 29a4bfab790e29994d41be4758151d2ffbaa72a9..b2e5965cd1c74b4abf843480f7616c3959c03d87 100644
(file)
--- a/
src/print.c
+++ b/
src/print.c
@@
-854,7
+854,7
@@
append to existing target file. */)
{
file = Fexpand_file_name (file, Qnil);
initial_stderr_stream = stderr;
- stderr = fopen (SDATA (file), NILP (append) ? "w" : "a");
+ stderr = fopen (S
S
DATA (file), NILP (append) ? "w" : "a");
if (stderr == NULL)
{
stderr = initial_stderr_stream;